home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / comps / widgets / delphi10 / thuicpnl / thfiptst.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-06-17  |  399 b   |  26 lines

  1. unit Thfiptst;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, ExtCtrls, Filicpnl, Thuicpnl;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     ThumbNailFileIconPanel1: TThumbNailFileIconPanel;
  12.   private
  13.     { Private declarations }
  14.   public
  15.     { Public declarations }
  16.   end;
  17.  
  18. var
  19.   Form1: TForm1;
  20.  
  21. implementation
  22.  
  23. {$R *.DFM}
  24.  
  25. end.
  26.